The Intel SDM (section 18.10) clearly states that rdtsc
returns a "monotonically increasing unique value".
Current emulation code for rdtsc (both PV and HVM) returns
only a monotonically-non-decreasing (non-unique) value,
so ensure stale value is always incremented.
Signed-off-by: Dan Magenheimer <dan.magenheimer@oracle.com>
spin_lock(&pl->pl_time_lock);
now = get_s_time() + pl->stime_offset;
- if ( (int64_t)(now - pl->last_guest_time) >= 0 )
+ if ( (int64_t)(now - pl->last_guest_time) > 0 )
pl->last_guest_time = now;
else
- now = pl->last_guest_time;
+ now = ++pl->last_guest_time;
spin_unlock(&pl->pl_time_lock);
return now + v->arch.hvm_vcpu.stime_offset;
rdtsc_usercount++;
spin_lock(&v->domain->arch.vtsc_lock);
now = get_s_time() + v->domain->arch.vtsc_stime_offset;
- if ( (int64_t)(now - v->domain->arch.vtsc_last) >= 0 )
+ if ( (int64_t)(now - v->domain->arch.vtsc_last) > 0 )
v->domain->arch.vtsc_last = now;
else
- now = v->domain->arch.vtsc_last;
+ now = ++v->domain->arch.vtsc_last;
spin_unlock(&v->domain->arch.vtsc_lock);
regs->eax = (uint32_t)now;
regs->edx = (uint32_t)(now >> 32);